projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5897f44
)
(boyer_moore): Fix incorrect synching of the trunk and
author
Kenichi Handa
<handa@m17n.org>
Mon, 11 Feb 2008 05:25:24 +0000
(
05:25
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Mon, 11 Feb 2008 05:25:24 +0000
(
05:25
+0000)
emacs-unicode-2.
src/search.c
patch
|
blob
|
history
diff --git
a/src/search.c
b/src/search.c
index 9c195300823642d0988229650718d93b129be2e7..56bf47571e194eae707a9ac65ad2869c98546f41 100644
(file)
--- a/
src/search.c
+++ b/
src/search.c
@@
-1785,7
+1785,7
@@
boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt,
ch = -1;
}
- if (ch >= 0
4
00)
+ if (ch >= 0
2
00)
j = (ch & 0x3F) | 0200;
else
j = *ptr;
@@
-1804,7
+1804,7
@@
boyer_moore (n, base_pat, len, len_byte, trt, inverse_trt,
while (1)
{
TRANSLATE (ch, inverse_trt, ch);
- if (ch >= 0
4
00)
+ if (ch >= 0
2
00)
j = (ch & 0x3F) | 0200;
else
j = ch;